home *** CD-ROM | disk | FTP | other *** search
- Const msiNoAction = -1
- Const msiInstallStateAdvertise = 1
- Const msiInstallStateAbsent = 2
- Const msiInstallStateLocal = 3
- Const msiInstallStateSource = 4
- Const msiInstallStateDefault = 5
-
-
- If (Session.FeatureRequestState("Draw") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("PP") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("Rave") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("Trace") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("Capture") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("Utilities") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("Filters") = msiInstallStateAbsent) And _
- (Session.FeatureRequestState("WritingTools") = msiInstallStateAbsent) Then
- Session.Property("NOFEATURESELECTED") = "1"
- Else
- Session.Property("NOFEATURESELECTED") = "0"
- End If